home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / net / bind-contrib.tar.gz / bind-contrib.tar / contrib / getkeyby / Makefile < prev    next >
Makefile  |  1996-10-25  |  432b  |  18 lines

  1. # Truly simple Makefile for getkeyby() subroutine and getkey test program
  2. #
  3. all:  getkey
  4. getkeyby.o:  getkeyby.c
  5. parseresp.o:  parseresp.c
  6. getkey.o:  getkey.c
  7.  
  8. # On some systems, you may have to link with -lresolv.  In other systems
  9. # the DNS name resolver is in libc already.
  10. #LIBS=-lresolv
  11. LIBS=
  12.  
  13. getkey: getkey.o getkeyby.o parseresp.o
  14.     $(CC) $(CFLAGS) -o getkey getkey.o getkeyby.o parseresp.o $(LIBS)
  15.  
  16. clean:
  17.     rm -f *.o getkey
  18.